home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.9 KB | 83 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _DRAGDROP_
- #define _DRAGDROP_
-
- #ifndef _DRAGDRPB_
- #include "DragDrpB.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODDragAndDrop;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODSession;
- interface ODPart;
- interface ODStorageUnit;
- interface ODFacet;
- interface ODFrame;
- interface ODStorageSystem;
- interface ODWindow;
- interface ODWindowState;
- interface ODDragItemIterator;
- interface ODStorageUnitView;
-
-
- //=====================================================================================
- // Constants
- //=====================================================================================
- #define kODDragFlavor 0x50415254 // 'PART'
-
- #define kODdragHasLeftSourceFrame 0x00000001
- #define kODdragIsInSourcePart 0x00000002
- #define kODdragIsInSourceFrame 0x00000004
-
- //=====================================================================================
- // ODDragAndDrop
- //=====================================================================================
-
- #ifdef _PLATFORM_MACINTOSH_
-
- interface ODDragAndDrop : ODBaseDragAndDrop
- {
-
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit,
- Clear,
- GetContentStorageUnit,
- StartDrag;
-
- releaseorder:
- GetDragAttributes,
- GetDragReference,
- MyDragTrackingHandler,
- MyReceiveDropHandler,
- MySendDataProc,
- FindTargetFacet,
- PromiseAEHandler,
- GetPromiseFromDragManager,
- GetDataFromDragManager,
- reserved1;
-
- majorversion = 1; minorversion = 0;
-
-
- };
- #endif
-
- };
-
- #endif //# _PLATFORM_MACINTOSH
-
- #endif // _DRAGDROP_
-